I worked with Backbone, Angular 1, Ember, and then React.
The article overlooks the problems that made React popular:
- Composition: Composing components is easier and more efficient in React. Backbone’s render function assumes "this.$el" is mounted and available in the DOM. That makes composition difficult: you cannot simply nest one component inside another without managing the DOM lifecycle of subcomponents. You don’t need 1.000 components to feel the pain.
- Event handling: You can’t pass an event handler as a string, so the events object must be paired with the selector to locate the element. Any structural changes require updating selectors or managing unique IDs.
- State management: Re-rendering components when state changes becomes messy in Backbone fairly quickly. That mess is why Angular 1 gained popularity. React simplifies this further by enforcing a one-directional state flow.
- Efficient DOM updates: Even if you implement composition and state management ad hoc, you still must update the DOM efficiently to avoid layout thrashing and related issues. React isn’t immune, but these problems are typically easier to handle.
- Other features: Implementing useful capabilities from scratch, like lazy loading parts of components (for example, suspense) or building hybrid apps with server-side rendering, requires significant work.
I'll argue that nowadays, if you want to use vanilla JS with templating support, lit-html (not the full framework, just the template part) is a much better choice than Backbone.
> For massive apps with 1,000 components on the same page, maybe React's complexity is justified. But what the other 99% of apps?
The number of components is not the only yardstick of complexity. Most of the complexity in building a UI comes from state management and how state changes are propagated across the store and the UI.
I worked with Backbone for many years, and I can distinctly recall the hours of frustration I had debugging a UI because it was freezing due to cascading state changes. That was because we were using Backbone Store, which had bidirectional data flow, and when one updated the store, it would trigger a change to the UI, which would change the state store, which would change the UI, etc.
You could argue that the real innovation of React was "unidirectional data flow," but React team made Flux architecture central to the framework, making it easier to adopt good practices, whereas Backbone remained store agnostic and even encouraged Backbone Store which used the observer pattern for many years. I think you should choose a framework that allows you to fall into the Pit of Success, and React was that framework at the time, and for my money, it still is.
The elderly, the kids, the teenagers, the adults. Screen addiction is a pandemic. The biggest one humanity has ever seen.
The richest, most powerful organizations are spending billions every month to make it more addictive, to reach more people.
The article doesn’t define “IOC”, so if (like me) you didn’t know the abbreviation: Indicators Of Compromise.
(They actually do use the expanded form in the article, just without some parentheses afterwards on the first usage of the phrase.)
Maybe everyone but me knows the abbreviation, but in case it helps _someone_ out there!
This is very interesting to see on here. My mother was the dissenting vote on an FDA panel on this. There are articles about it. I'll copy her words (as reported by something but seems legit)
> She said that the FDA's plan doesn't go far enough.
> "It's hard to dismiss an anecdotal report when you are the anecdote. When a patient is finally tested and found to have gadolinium retention, there's no FDA-approved antidote. So what does the patient do?"
And I want to reiterate that she was "the" no not "a" no. I don't know if her vote alone is what's caused more research into this. But it's probably the thing I brag about her the most. Even though everybody else said it was fine or abstained, she stood strong. If you look up the articles from the time of the panel (2017) you'll see a lot of articles about this panel and how she was the sole no vote. Included in that was a public post from Chuck Norris praising her. He was going to come out to meet us but I think it was a bad Texas hurricane season so that fell through
The most important question for every cross platform framework is what happens to the UI?
Adobe products (both the Creative Suite, and their Flex Builder environment for Flash app) had their own design system that felt foreign on every platform it shipped on. If you wanted something that felt native, you had to reimplement e.g. Apple Aqua in Flash yourself.
Flutter goes out of its way to do that work for you, aiming for a "Cupertino" theme that looks-and-feels pixel-perfect on iOS.
React Native tries to delegate to platform primitives for complex widgets, so scroll views still feel like Apple's when on Apple's platform.
Just about every top-level comment here is talking about that in one way or another; yet the blog post doesn't mention it at all.
It's possible that Apple/Swift's mindshare among developers will lead to a significant number of apps shipping the Swift version for Android even if it means using Apple's UI, simply because they can't be bothered to make something bespoke for Android. Then again, Apple takes so much pride in its design language that it might not be willing to implement anything that feels good on a platform they don't own. If they were to ship an API-compatible widget toolkit, it might e.g. use intentionally bad spring physics to remind you you aren't on an iPhone.
I wonder how big the community part of this is. Is this an open source project of non-Apple people who are trying to break Apple's platform out of its walled garden? Is a lot of it funded by Apple? Ultimately, that's going to shape a lot of how this plays out.
Misleading title. Other shapes have been well known for years, like a sphere. The novelty here is the first polyhedron that can't pass through itself.
My children attended Montessori schools, and it really is a wonderful system.
I would really like to see an extension of this learning method up through high school --- the closest thing I'm aware of was a school I attended in Mississippi for a couple of years --- classes were divided between academic and social, social classes (homeroom, phys ed, social studies, &c.) were attended at one's age, while academic classes (reading, math, science, geography, history, &c.) were by ability (with a limit on no more than 4 grades ahead up to 8th grade) --- after 8th grade that was removed and students were allowed to take any classes.
Some of the faculty were accredited as faculty at a local college, and where warranted, either professors travelled from there to the school, or students travelled to the college for classes --- it wasn't uncommon for students to graduate high school and simultaneously be awarded a college degree.
Apparently, the system was deemed unfair because it accorded a benefit to the students who were able to take advantage of it, with no commensurate compensation for those who were not, so the Miss. State Supreme Court dismantled it.
Attention is all he needs.
I used to work at Valve -- on the CS:GO team, no less -- although I left nearly a decade ago. I don't know what prompted this change but I have some suspicions. Even when I was there and the loot box system was new to CS:GO, there were concerns that a lot of trading was happening outside of the marketplace. The trading happened elsewhere because you can't have more than $300 in your Steam wallet (more than this would trigger some banking regulations that Valve wanted to avoid), so anything more valuable than that had to happen on 3rd party sites.
We didn't want this for three reasons: we'd lose out on the marketplace cut (10% of all sales I think?); we didn't want people grinding the game to earn money from rare drops; and finally because 3rd party trading ended up creating a lot of scams and therefore angry players.
At the time, we didn't see any way around it: we couldn't prevent people "gifting" items to each other, and despite omniscience and omnipotence in the game and Marketplace, we weren't confident that we could rejigger the drop rates and rarities to lower the maximum perceived value of the fanciest knife to be under the $300 limit.
I suspect that the CS:GO team finally decided to do something about it and chose this. If the team is anything like I left it, they probably modeled this extensively (we had data on nearly every game ever played in CS:GO and complete Marketplace data), and discussed the change with the TF2 and DOTA teams, who also have to deal with this, and decided that the short-term fury of a small fraction of the playerbase was worth it. I wonder if TF2 and DOTA are having similar problems and, if so, whether this change will be rolled out for those games, too.
The actual update: https://asahilinux.org/2025/10/progress-report-6-17/
I waded through some Tik Tok comment threads on this change and it was so eye-opening: there are a shocking number of people without disposable income who were seriously investing in CS items, thinking it was a retirement portfolio. I fear the crypto era has lead to even further diminished financial literacy at large… Blessed be compound interest and financial regulation.
“just play better poker” like that’s an easy thing to do in a game of chance and incomplete information, with variance having years or decades long tails. not to mention it’s an unsolved game, so “better” poker doesn’t even really have a set definition and depends on tons of variables. and they literally knew what hole cards were coming - that’s vastly more of an edge than playing “better poker” than someone.
Besides the fact they were often targeting pros - this was reported on and known by LA area pros for at least two years now. why the FBI decided to act now is weird to me. I can’t stress enough that in the pro scene this was common knowledge. years old podcast clips are coming up talking about it.
source: https://sports.yahoo.com/nba/breaking-news/article/professio...
There's usually some confusion about this, so to clarify in advance:
- The Typst online editor is proprietary: https://typst.app
- The Typst compiler/CLI is open source: https://github.com/typst/typst
I hear that the online editor is quite good, but personally I've only ever used the CLI.
I originally picked up Typst as yet another replacement for PowerPoint (replacing my use of Marp), but have since used it for a poster and some minor text documents. And I've been very happy the results. I know that a lot of people love using LaTeX for that kind of thing, and with good reasons, but I always forgot most of the details between my (occasional) use of LaTeX, while I've found Typst to be very easy to return to
This part seems fairly editorial:
>Debian Policy still cites the FHS, even though the FHS has gone unmaintained for more than a decade.
What ongoing maintenance would a file system standard require? A successful standard of that type would have to remain static unless there was a serious issue to address. Regular changes are what the standard was intended to combat in the first place.
>The specification was not so much finished as abandoned after FHS 3.0 was released...
OK.
>...though there is a slow-moving effort to revive and revise the standard as FHS 4.0, it has not yet produced any results.
So it is not abandoned then. A slow moving process is exactly what you would want for the maintenance of a file system standard.
>Meanwhile, in the absence of a current standard, systemd has spun off its file-hierarchy documentation to the Linux Userspace API (UAPI) Group as a specification. LWN covered that development in August, related to Fedora's search for an FHS successor.
Ah. Systemd/Fedora want a standard that they can directly control without interference from others.
I bet this is an on-purpose move by Valve, and I view this as a sane action. [1]
Having a game where some players only play in order to win money is, for sure, a no go. If the game is fun, then players will keep on playing it. It may also keep some money thirsty (sometimes very toxic) people at the gates.
It is also smoothing players' frustration and shopping-spree habits in order to obtain a rare item. If you have the ability to trade N rare items for another rare item then you quite surely may obtain any cosmetic item you want for a much lower investment (less boxes to open). The 'grey market' will adapt to this new value.
That's also a lesson on how a closed economy (and open ones too, to some extent) can collapse based on a single actor controlling the rules. That's fair to learn.
[1] EDIT: and probably a preemptive protection for any future legal threat (as some countries tend to prohibit money gambling in games)
I also used to be really (really really) into photography. Personally, I’ve stopped taking pictures because of the stigma around a camera.
Everyone, me more than most, doesn’t want their picture taken, or to be in the background of other photos. When someone can take thousands of pictures an hour, and upload them all to some social media site to be permanently stored… idk it’s shifted from a way to capture a moment to feeling like you’re being survieled.
A bit hyperbolic, but it’s the best way to describe what I’m feeling
I am actually willing to support DIY camera efforts, but if you're semi-serious about taking pictures, this just wouldn't work. First, Raspberry Pi (I'm guessing this is a CM4/CM5) is a disaster for a camera board. Nobody wants a 20s boot every time you want to take a picture, cameras need to be near instantaneous. And you can't keep it on either, because the RPi can't really sleep. There are boards that can actually sleep, but with fewer sensor options.
Now moving on to the sensor (IMX 519 - Arducam?) - it's tinier than the tiniest sensor found on phones. If you really want to have decent image quality, you should look at Will Whang's OneInchEye and Four-thirds eye (https://www.willwhang.dev/). 4/3 Eye uses IMX294 which is currently the only large sensor which has Linux support (I think he upstreamed it) and MIPI. All the other larger sensors use interfaces like SLVS which are impossible to connect to.
If anyone's going to attempt a serious camera, they need to do two things. Use at least a 1 inch sensor, and a board which can actually sleep (which means it can't be the RPi). This would mean a bunch of difficult work, such as drivers to get these sensors to work with those boards. The Alice Camera (https://www.alice.camera/) is a better attempt and probably uses the IMX294 as well. The most impressive attempt however is Wenting Zhang's Sitina S1 - (https://rangefinderforum.com/threads/diy-full-frame-digital-...). He used a full frame Kodak CCD Sensor.
There is a market for a well made camera like the Fuji X-Half. It doesn't need to have a lot of features, just needs to have ergonomics and take decent pictures. Stuff like proofs are secondary to what actually matters - first it needs to take good pictures, which the IMX 519 is going to struggle with.
I used to be really (really really) into photography. I respect anyone working hard on a physical product, but this misses the mark on every front I can think of.
The real issue that photographers grapple with, emotionally and financially, is that pictures have become so thoroughly commodified that nobody assigns them cultural value anymore. They are the thumbnail you see before the short video clip starts playing.
Nobody has ever walked past a photograph because they can't inspect its digital authenticity hash. This is especially funny to me because I used to struggle with the fact that people looking at your work don't know or care what kind of camera or process was involved. They don't know if I spent two hours zoomed in removing microscopic dust particles from the scanning process after a long hike to get a single shot at 5:30am, or if it was just the 32nd of 122 shots taken in a burst by someone holding up an iPad Pro Max at a U2 concert.
This all made me sad for a long time, but I ultimately came to terms with the fact that my own incentives were perverse; I was seeking the external gratification of getting likes just like everyone else. If you can get back to a place where you're taking photographs or making music or doing 5 minute daily synth drills for your own happiness with no expectation of external validity, you will be far happier taking that $399 and buying a Mamiya C330.
This video is about music, but it's also about everything worth doing for the right reasons. https://www.youtube.com/watch?v=NvQF4YIvxwE
Remember back in the day when we just downloaded skin packs from some random Geocities website with obnoxious red text on black background and after going through the install.txt written in broken English/Italian, lo and behold your AK47 now had a proper arctic camo skin and it was so much cooler?
What was wrong with that? Doesn’t gaben have enough money for his super yachts and sword collections?
I find headlines like this much more appropriate when placed in terms of days of revenue: "Apple loses UK App Store monopoly case, penalty might near 2 days of revenue!"
For somebody that makes the median income, of about $50k, this is a fine of $273 for years of largescale systematic abusive behavior, done for profit.
> CSCI 3300: Classical Software Studies
Alan Kay, my favorite curmudgeon, spent decades trying to remind us we keep reinventing concepts that were worked out in the late 70s and he’s disappointed we’ve been running in circles ever since. He’s still disappointed because very few programmers are ever introduced to the history of computer science in the way that artists study the history of art or philosophers the history of philosophy.
Gambling mechanics for anyone under 18 should be banned. Children can't buy lottery tickets or hit tables in Vegas. Its crazy they can buy loot boxes that real life value.
I play CS. This is good. The gambling economy and the creator economy of people pumping their marketplaces and gambling sites is really toxic. It extracts money from kids, all for a nice skin. Making them more affordable is going to make this more fair and sensible.
In a similar vein, this is one of the most interesting things I’ve come across on HN over the years:
https://www.linusakesson.net/programming/pipelogic/index.php
Past HN post: https://news.ycombinator.com/item?id=15363029
This is one of those things that you don't really tend to think about (pun not intended!) until you experience a change in your thinking or meet someone who thinks like you do!
> If we can avoid the compression step, and do the manipulations directly in the high-dimensional, non-linguistic, conceptual space, we can move much faster
With my neurodivergent brain I've always conducted my thoughts in an "uncompressed format" and then eternally struggled to confine it all into words. Only then for people to misinterpret and question it. They might get caught up in the first sentence when the end of the paragraph is where you need to be!
That's why when you meet someone who thinks like you the depth of conversation and thinking you can achieve together is vast and also incredibly liberating! Your no longer limited by words in same way.
Since becoming ill I've suffered badly with brainfog. The cutesy name for a cruel experience. Sometimes there's no memories to draw on when your thinking, the cupboards are bare. You can't leap from thought to thought because they disappear before you get there or after like a cursed platformer. You might be able to grab hold of the thought but you can't reach inside or read it. It's all wrong somehow like when your suddenly convinced a word is spelt wrong even though you know it's right. You can't maintain focus long enough to finish your train of thought.
Even that subconscious processing is affected I used to prime my brain with information all day and instead of waking up with the solution I'll wake up frustrated but not knowing why. Just the vague notion that I failed at something that used to come so easily.
As long as Apple requires they make use of those services for me to install software on the computer I bought, and they prevent others from producing equivalent competing devices via patents (i.e. government granted monopolies), zero.
It's not that it's not worth something, it's that they're abusing their patents and monopoly to extract further compensation after I already bought the device.
Best stack cloud providers don't want you to know about, /dev/null for db and https://github.com/kelseyhightower/nocode for the backend.
The swamp is now a protected wetland.
The way this is going, the President won’t need using any pardon powers, because the judges will all ask the President what the judgement should be in advance.
And the prosecutors will ask who to prosecute.
Finally only fair justice!
The pardon power has been so abused these past few administrations that it's clear there should be constitutional changes in the pardon power, either congressional review, or strip it altogether.
I cannot comprehend how half of Americans are fine with this corrupt leader? He even does this bizarre maffia like deals out in the open for his own interest, that's how confident he is no one will say anything
The message is clear from his circus administration, you can do anything as long as you bribe them
I wonder if anyone else here is old enough to remember the "I'm a Mac", "And I'm a PC" ads.
There was one that was about all the annoying security pop-ups Windows (used to?) have. (FWIW, it starts here: https://youtu.be/qfv6Ah_MVJU?t=230 .)
Lately I've gotten so many of these popups on Mac that it both annoys and amuses the hell out of me. "Die a hero or live long enough to see yourself become the villain", I guess.
But, man, Apple hardware still rocks. Can't deny that.
I'm a tedious broken record about this (among many other things) but if you haven't read this Richard Cook piece, I strongly recommend you stop reading this postmortem and go read Cook's piece first. It won't take you long. It's the single best piece of writing about this topic I have ever read and I think the piece of technical writing that has done the most to change my thinking:
https://how.complexsystems.fail/
You can literally check off the things from Cook's piece that apply directly here. Also: when I wrote this comment, most of the thread was about root-causing the DNS thing that happened, which I don't think is the big story behind this outage. (Cook rejects the whole idea of a "root cause", and I'm pretty sure he's dead on right about why.)
https://www2.ljworld.com/news/schools/2025/aug/07/lawrence-s...
Another false positive by one of these leading content filters schools use - the kid said something stupid in a group chat and an AI reported it to the school, and the school contacted the police. The kid was arrested, stripped searched, and held for 24 hours without access to their parents or counsel. They ultimately had to spend time in probation, a full mental health evaluation, and go to an alternative school for a period of time. They are suing Gaggle, who claims they never intended their system to be used that way.
These kinds of false positives are incredibly common. I interviewed at one of their competitors (Lightspeed), and they actually provide a paid service where they have humans review all the alerts before being forwarded to the school or authorities. This is a paid addon, though.
A lot of the early EV battery life projections were based on Nissan Leaf Gen 1. Which had a horrendous battery pack that combined poor choice of chemistry, aggressive usage and a complete lack of active cooling.
When EVs with good battery pack engineering started hitting the streets, they outperformed those early projections by a lot. And by now, it's getting clear that battery pack isn't as much of a concern - with some of the better designs, like in early Teslas, losing about 5-15% of their capacity over a decade of use.
> Omnilert later admitted the incident was a “false positive” but claimed the system “functioned as intended,” saying its purpose is to “prioritize safety and awareness through rapid human verification.”
It just created a situation in which a bunch of people with guns were told that some teen had a gun. That's a very unsafe situation that the system created, out of nothing.
And some teen may be traumatized. Again, unsafe.
Incidentally, the article's quotes make this teen sound more adult than anyone who sold or purchased this technology product.
This is less useful than most people expected. Redwood has been struggling because the expected battery turnover is not occurring. EV batteries are lasting a long time, so they stay in the car are and not being recycled or reused in any quantity yet.
If EV batteries last 20+ years in EV's, it'll be > 2040 before there are significant numbers of EV batteries available to recycle or reuse.
https://www.geotab.com/blog/ev-battery-health/
Coffeezilla video about this is up already
https://www.youtube.com/watch?v=JMEJTORMVN4
I don't use any of these type of LLM tools which basically amount to just a prompt you leave in place. They make it harder to refine my prompts and keep track of what is causing what in the outputs. I write very precise prompts every time.
Also, I try not work out a problem over the course of several prompts back and forth. The first response is always the best and I try to one shot it every time. If I don't get what I want, I adjust the prompt and try again.
> Tim Rieser, former senior aide to Senator Leahy who wrote the 2011 amendment mandating information gathering, told the BBC the gateway's removal meant the State Department was "clearly ignoring the law".
We're in a really bad place... with a servile congress, it turns out there aren't really any laws constraining the executive branch. When everything relies on "independent IGs" for law enforcement inside executive branch departments, and the President can fire them all without consequence or oversight, then it turns out there is no law.
To be honest. I think this is one of the strengths of autonomous cars.
With humans when they do this at max we can punish that individual. To increase population wide compliance we can do a safety awareness campaign, ramp up enforcement, ramp up the fines. But all of these cost a lot of money to do, take a while to have an effect, need to be repeated/kept up, and only help statistically.
With a robot driver we can develop a fix and roll it out on all of them. Problem solved. They were doing the wrong thing, now they are doing the right thing. If we add a regression test we can even make sure that the problem won't be reintroduced in the future. Try to do that with human drivers.
We really need an internet Bill of Rights. Google has too much power to delete your company from existence with no due process or recourse.
If any company controls some (high) percentage of a particular market, say web browsers, search, or e-commerce, or social media, the public's equal access should start to look more like a right and less like an at-will contract.
30 years ago, if a shop had a falling out with the landlord, it could move to the next building over and resume business. Now if you annoy eBay, Amazon or Walmart, you're locked out nationwide. If you're an Uber, Lyft, or Doordash (etc) gig worker and their bots decide they don't like you anymore, then sayonara sucker! Your account has been disabled, have a nice day and don't reapply.
Our regulatory structure and economies of scale encourage consolidation and scale and grant access to this market to these businesses, but we aren't protecting the now powerless individuals and small businesses who are randomly and needlessly tossed out with nobody to answer their pleas of desperation, no explanation of rules broken, and no opportunity to appeal with transparency.
It's a sorry state of affairs at the moment.
The title is underselling the nuance—there's the entire Myanmar civil war hiding behind the word "allegedly". The group in power claims a group trying to overthrow them is operating scam centers (they deny it); this SpaceX intervention cuts off communications on a large scale, presumably aiding one side or the other in some unclear way.
> "“Maj. Gen. Zaw Min Tun, the spokesperson for the military government, charged in a statement Monday night that the top leaders of the Karen National Union, an armed ethnic organization opposed to army rule, were involved in the scam projects at KK Park,” the AP wrote. The Karen National Union is “part of the larger armed resistance movement in Myanmar’s civil war” and “deny any involvement in the scams.”"
Happened to me last week. One morning we wake up and the whole company website does not work.
Not advice with some time to fix any possible problem, just blocked.
We gave very bad image to our clients and users, and had to give explanations of a false positive from google detection.
The culprit, according to google search console, was a double redirect on our web email domain (/ -> inbox -> login).
After just moving the webmail to another domain, removing one of the redirections just in case, and asking politely 4 times to be unblocked.. took about 12 hours. And no real recourse, feedback or anything about when its gonna be solved. And no responsibility.
The worse is the feeling of not in control of your own business, and depending on a third party which is not related at all with us, which made a huge mistake, to let out clients use our platform.
Yamaha is an old company found on very different ethos compared to others. Their history is interesting, too: https://www.youtube.com/watch?v=y6t5F3cb810
It's worth a watch.
On another note, it's very telling that companies that protect their "hey! we do this interesting thing, gonna buy?" character survives for much longer compared to companies which say "we can earn a ton of money if we do this".
The companies in the second lot does a lot of harm to their ecosystems to be able to continue existing.
I'm going to file this under "examples of Yamaha doing the right thing" (Steinberg is owned by Yamaha)
previous examples:
* Yamaha saved Korg by buying it when it was in financial trouble and giving it a cash injection, only to then sell it back to its previous owners once they had enough cash[1].
* Yamaha in the 80's had acquired Sequential (for those not familiar: Sequential Circuits is one of the most admired synthesizer makers). Many years later, Sequential's founder Dave Smith established a new company under a different name and in 2015 Yamaha decided to return the rights to use the Sequential brand to Smith, as a gesture of goodwill, on Sequential's 40th anniversary (this was also thanks to Roland's founder Ikutaro Kakehashi who convinced Yamaha that it would be the right thing to do) [1][2][3]
[1] https://www.soundonsound.com/music-business/history-korg-par...
[2] https://www.gearnews.com/american-giants-the-history-of-sequ...
If there are any googlers here, I'd like to report an even more dangerous website. As much as 30-50% of the traffic to it relates to malware or scams, and it has gone unpunished for a very long time.
The address appears to be adsense.google.com.
This is the first time I hear about https://publicsuffix.org
If you're going to host user content on subdomains, then you should probably have your site on the Public Suffix List https://publicsuffix.org/list/ . That should eventually make its way into various services so they know that a tainted subdomain doesn't taint the entire site....
Be sure to see the team's whole list of Cursed Knowledge. https://immich.app/cursed-knowledge
That's not just one vulnerability, that's a whole slew of failures. For instance there is absolutely no need to keep those documents on the live server for applicants once they have been used for their intended purpose. Blast radius reduction and all that.
I hope you got at least free tickets for life out of this.
I am not the author, but my bet is that he didn't know of its existence.
The best part about sharing your config or knowledge is that someone will always light up your blind spots.
This article (and author) seems to be something of a trauma-skeptic, which doesn't seem to agree with mainstream science (setting aside Body Keeps the Score)
> That is, trauma doesn’t lead to dysfunction or abnormal brain function, physiology or hormonal regulation. Rather, an unhealthy person may be more susceptible to trauma.
What has been documented about Adverse Childhood Experiences doesn’t agree with this. There is copious evidence that the presence of ACEs, independent of other factors, leads to poor health outcomes [1]
It's also well known that past trauma predisposes you to future trauma [2]
There's also data indicating CPTSD, PTSD, and Borderline are distinct disorders [3]
1 - https://pmc.ncbi.nlm.nih.gov/articles/PMC8882933/ https://bmcpublichealth.biomedcentral.com/articles/10.1186/s...
2 - https://pmc.ncbi.nlm.nih.gov/articles/PMC5858954/
3 - https://www.psychiatrypodcast.com/psychiatry-psychotherapy-p...
Why are you asking questions about their PR department coordinated "Company missions"?
Let me summarise their real missions:
1. Power and money
2. Power and money
3. Power and money
How does AI help them make money and gain more power?
I can give you a few ways...
Because the AI works so well, or because it doesn't?
> ”By reducing the size of our team, fewer conversations will be required to make a decision, and each person will be more load-bearing and have more scope and impact,” Wang writes in a memo seen by Axios.
That's kinda wild. I'm kinda shocked they put it in writing.
If you dig into the actual report (I know, I know, how passe), you see how they get the numbers. Most of the errors are "sourcing issues": the AI assistant doesn't cite a claim, or it (shocking) cites Wikipedia instead of the BBC.
Other issues: the report doesn't even say which particular models it's querying [ETA: discovered they do list this in an appendix], aside from saying it's the consumer tier. And it leaves off Anthropic (in my experience, by far the best at this type of task), favoring Perplexity and (perplexingly) Copilot. The article also intermingles claims from the recent report and the one on research conducted a year ago, leaving out critical context that... things have changed.
This article contains significant issues.
But the courts are saying: the law does NOT allow this.
So maybe “malicious compliance” is a misnomer. We should just call it "illegal dark pattern".
No, the problem is 100% the law, because it was written in a way that allows this type of malicious compliance.
Laws need to be written well to achieve good outcomes. If the law allows for malicious compliance, it is a badly written law.
The sites are just trying to maximize profit, as anyone could predict. So write better laws.
The problem here is not the law, but malicious compliance by websites that don't want to give up tracking.
"Spend Five Minutes in a Menu of Legalese" is not the intended alternative to "Accept All". "Decline All" is! And this is starting to be enforced through the courts, so you're increasingly seeing the "Decline All" option right away. As it should be. https://www.techspot.com/news/108043-german-court-takes-stan...
Of course, also respecting a Do-Not-Track header and avoiding the cookie banner entirely while not tracking the user, would be even better.
Or just ban this kind of data collection. Is there any reason anyone would willingly click "Accept" when a website asks to share your data with 500+ partner sites?
They abandoned documentation (edit: for the open source codebase) a couple of weeks ago - that seems more significant.
From their Slack on Oct 10:
"The documentation sites at docs.min.io/community have been pulled of this morning and will redirect to the equivalent AIStor documentation where possible". [emphasis mine]
The minio/docs repository hasn't been updated in 2 weeks now, and the implication is that isn't going to be.
Even when I set up a minio cluster this February, it was both impressively easy and hard in a few small aspects. The most crucial installation tips - around 100Gb networking, Linux kernel tunables and fault-finding - were hung off comments on their github, talking about files that were deleted from the repository years ago.
I've built a cluster for a client that's being expanded to ≈100PB this year. The price of support comes in at at slightly less than the equivalent amount of S3 storage (not including the actual hosting costs!). The value of it just isn't that high to my client - so I guess we're just coasting on what we can get now, and will have to see what real community might form around the source.
I'm not a free software die-hard so I'm grateful for the work minio have put into the world, and the business it's enabling. But it seems super-clear they're stopping those contributions, and I'd bet the final open source release will happen in the next year.
If anyone else is hosting with minio & can't afford the support either :) please drop me a line and maybe we can get something going.
Something really scary in France right now is that you can see really clearly how most mainstream media are used for propaganda.
Since a few days, there is an abundance of cover and articles in most major newspaper here with propaganda and repeated lies supporting him. It's hard to imagine but non stop. You have everyday interviews of his family saying that it is an injustice, that he did nothing, that the judgement was rigged, that he was a great men that served France and so should not be treated like everyone else. Article about how sad the poor family is. Number of articles repeating friends of him verbatim s that the judgement was fake.
Almost none speaking about the facts, the grounds for his sentence, the big number of other trials against him that are running. And also the other definitive convictions he got. Like for attempting to bribe a head prosecutor to get insider info about his case. Using a prepaid line opened with a fake name...
But what you see in the end is that 90% of medias in France belongs to a few wealthy families that are friends with him.
When you always published and built Docker images for the public you are creating an expectation, people will rely on that and will chose your software based on that expectation.
You suddenly deciding that you won't be offering updated Docker images especially after a CVE and with no prior notice (except a hidden commit 4 days ago that updated the README) is approaching malicious-level actions.
If they truly cared about their community and still wanted to go through the decision of not offering public docker builds the responsible thing to do is offer a warning period, start adding notices in the repo (gh and docker) and create an easy migration path, even endorse or help some community members who would be fine with taking care of the public builds of the image.
But no, they introduced the change, made no public statement about it, waited for someone to notice this, offered no explanation and went silent. After a huge CVE. Irresponsible.
Keep in mind this is the same project that removed all useful functionality from the included web UI in the community edition with the excuse that it was too much effort to maintain.
This is another case of VC-funded companies pulling up the ladder behind themselves.
That's a pretty damn editorialized title[0] given that Tusass signed an extended deal with their original provider. To me the chosen title implies that Tusass had chosen Starlink and then decided to stop using them. Starlink did submit a tender offer, but losing to an established competitor isn't super newsworthy.
0: No shade thrown at the submitter, as this is the title used by the site.
My first job out of law school was at a 176 year old law firm. New lawyers were socialized to identify with the past achievements of the firm, like helping J.P. Morgan build the railroads. There was a good reason for that: it socializes people to adhere to a culture and practices that have proven to be effective.
You’re right that, if overdone, it can lead to complacency. But if you treat every generation as a blank slate, you abandon the valuable capital of experience.
I turned off chatGPT memory entirely because it doesn't know how to segment itself. I was getting inane comments like this when asking about winter tires:
Because you work in firmware (so presumably you appreciate measurement, risk, durability) you might be more critical of the “wear sooner than ideal” signals and want a tire with more robustness.
Re: 1. I think the America of Theseus mindset is a bit troubling. A lot of people like to identify with achievements that they played no role in. Based on zero expertise whatsoever, I have a sense that this is a bit self defeating. To be born a winner, to be taught you’re a winner… how can that be healthy?
Today’s America scores zero points for its accomplishments of the past. But I think one way it can be a good thing is the, “we’ve done it before, we can do it again” attitude. Which is somewhat opposite to “we already won!”
Looking at the htop screenshot, I notice the lack of swap. You may want to enable earlyoom, so your whole server doesn't go down when a service goes bananas. The Linux Kernel OOM killer is often a bit too late to trigger.
You can also enable zram to compress ram, so you can over-provision like the pros'. A lot of long-running software leaks memory that compresses pretty well.
Here is how I do it on my Hetzner bare-metal servers using Ansible: https://gist.github.com/fungiboletus/794a265cc186e79cd5eb2fe... It also works on VMs.
There is just so much wrong with this from start to finish. Here are a few things, by no means inclusive:
1. We’ve already beaten China to the moon by 56 years, 3 months, and some change. And counting.
2. Nothing based around SLS is remotely serious. The cost and timeline of doing anything with it are unreasonable. It is an absolute dead-end. The SpaceX Super Heavy has been more capable arguably as early as the second flight test and certainly now. They could have built a “dumb” second stage at any time, but aren’t that short-sighted.
3. Blue Origin? I’ve had high hopes for the guys for two decades now. Don’t hold your breath.
4. Anyone else? Really, really don’t hold your breath.
This whole “race to the moon, part II” is almost criminally stupid. Land on the moon when we can accomplish something there, not just to prove we haven’t lost our mojo since Apollo.
One of the first things I do after getting an inquiry from a recruiter or friend referral is lookup the MX record for the company’s email domain. It is an anonymous one-command check to see if they’re a Microsoft shop.
If they are, it’s enormous personal red flag. MSFT is very popular so I’m only speaking about my own experience, but I have learned over the course of 20 years that an MSFT IT stack is highly correlated with me hating the engineering culture of an organization.
I know I am excluding a lot of companies with great engineering culture where I would thrive and who just happen to use Outlook/Sharepoint/Teams, etc. but it has had such better predictive power of rotten tech culture than any line of questioning I have come up with during interviews that I still use it.
I don’t mean any disrespect to MSFT-centric engineers out there - it’s not you it’s me.
That is indeed an LLM-written sentence — not only does it employ an em dash, but also lists objects in a series — twice within the same sentence — typical LLM behavior that renders its output conspicuous, obvious, and readily apparent to HN readers.
"The president and I want to get to the moon in this president's term" - Sean Duffy NASA administrator.
A scary way to set a schedule on a complex project with lives at stake. They don't care though.
To me, the most salient point was this:
> Code reviewing coworkers are rapidly losing their minds as they come to the crushing realization that they are now the first layer of quality control instead of one of the last. Asked to review; forced to pick apart. Calling out freshly added functions that are never called, hallucinated library additions, and obvious runtime or compilation errors. All while the author—who clearly only skimmed their “own” code—is taking no responsibility, going “whoopsie, Claude wrote that. Silly AI, ha-ha.”
LLMs have made Brandolini's law ("The amount of energy needed to refute bullshit is an order of magnitude larger than to produce it") perhaps understated. When an inexperienced or just inexpert developer can generate thousands of lines of code in minutes, the responsibility for keeping a system correct & sane gets offloaded to the reviewers who still know how to reason with human intelligence.
As a litmus test, look at a PR's added/removed LoC delta. LLM-written ones are almost entirely additive, whereas good senior engineers often remove as much code as they add.
Smells like a phishing attack to me.
Receive an email that says AWS is experiencing an outage. Log into your console to view the status, authenticate through a malicious wrapper, and compromise your account security.
“Studying “Brain Rot” for LLMs isn’t just a catchy metaphor—it reframes data curation as cognitive hygiene for AI, guiding how we source, filter, and maintain training corpora so deployed systems stay sharp, reliable, and aligned over time.”
An LLM-written line if I’ve ever seen one. Looks like the authors have their own brainrot to contend with.
Tech enthusiasts: My entire house is smart.
Tech workers: The only piece of technology in my house is a printer and I keep a gun next to it so I can shoot it if it makes a noise I don't recognize.
(stolen from @PPathole on Twitter)
I would normally say that "That must be a coincidence", but I had a client account compromise as well. And it was very strange:
Client was a small org, and two very old IAM accounts had suddenly had recent (yesterday) console log ins and password changes.
I'm investigating the extent of the compromise, but so far it seems all they did was open a ticket to turn on SES production access and increase the daily email limit to 50k.
These were basically dormant IAM users from more than 5 years ago, and it's certainly odd timing that they'd suddenly pop on this particular day.
I feel like we need some sort of "Offline-First" or "Offline-Compatible" certification process for "smart" devices. It would require some threshold of usability and total safety without network connection, which would vary depending on the device category. Companies in compliance could put a badge on their products so wary consumers know who to trust.
No. Public trust demands no software or programmable hardware in the election process.
• Why Electronic Voting is a BAD Idea <https://www.youtube.com/watch?v=w3_0x6oaDmI>
• Why Electronic Voting Is Still A Bad Idea <https://www.youtube.com/watch?v=LkH2r-sNjQs>
FRA: “As for HW3 owners who bought FSD, which basically turned out to be an interest free loan to Tesla for years, the automaker needs to offer free FSD transfer and a $10,000 discount on a car upgrade.
While this might sound like a lot”
It would add up to a lot of money for Tesla, but for customers? Some of these people paid $15.000 years ago for something that hasn’t been delivered, and now, they would be able to get $10,000 ‘back’, only if they commit to spending way more again, in the hope to eventually get what they bought years ago, or, more likely, in the hope of eventually being able to subscribe to get the features they already paid for years ago.
It seems amazon itself is aware of this issue. The linked engadget article even mentions this:
> "The rate at which Amazon has burned through the American working-age populace led to another piece of internal research, obtained this summer by Recode, which cautioned that the company might “deplete the available labor supply in the US” in certain metro regions within a few years."
Look, not to defend anything Amazon is doing, but this causal chain seems rather pareidolic and under-evidenced. You could spin some kind of crazy narrative about any major outage based on changes in policy that happened just before. But this isn't nearly the first AWS outage, and most of them happened before the recent RTO changes. It needs more evidence at best.
I'll go out on a limb and say we _need_ Wikipedia and it's okay that traffic falls.
Physical print encyclopedias got replaced by Wikipedia, but AI isn't a replacement (can't ever see how either). While AI is a method of easier access for the end user, the purpose of Wikipedia stands on its own.
I've always scoffed at the Wikimedia Foundation's warchest and continuously increasing annual spending. I say now is the time to save money. Become self sustaining through investments so it can live for 1000 years.
To me, it is an existence for the common good and should be governed as such.
I like to think I'm halfway decent at my job, and I wouldn't work there once. During undergrad, my landlord working for AMZN on the opposite end of the country offered me an interview, but it was during final exam week.
I asked if I could schedule the interview after my final exams, and his arrogance really showed when not only did he refuse, but then insisted my exams are not don't even register on the same scale of importance as the opportunity to work for Amazon.
Somewhat related: a recruiter at Google cold-called me a couple months into my first job out of undergrad back in 2016 and was similarly condescending about "the chance" to work for Google compared to everything else. I already had a low opinion of them when they gave my then-girlfriend an introductory O'Reilly book on Java after she failed their interview.
I regret being born too late to work somewhere like Bell Labs, SGI, or Sun. I had a ton of graybeard wizard coworkers from these places, and they were all a pleasure to learn from and even better friends. For the first 2 years of my first job, every day of work was like walking into the Shire and talking magic spells with 20 Gandalfs.
That job was great until I got put on a team with a guy who was a former middle manager at some IBM-like company and went from being surrounded by people lightyears ahead of me to being surrounded by Dilbert characters. The messed-up part was that it wasn't even punishment. I was rewarded after completing a project with my choice of which team I joined next, and I joined the wrong one. I assumed that joining a new team to utilize this newfangled "cloud computing" thing would be trailblazing, and I didn't do any diligence on who I would work with.
To this day, I still regret not rejoining the first team I worked for, otherwise I would still be at that company and happy about it. Then again, the boredom and discontent while being on that sucky team is the reason I started investing, and now I can buy a house in cash and fund myself to do whatever I want for at least a decade. Hard to complain about the way things turned out.
Between the engineering staff and the warehouse workers, I wonder how long it will be until they have already fired everyone who ever would have been willing to work there.
Even with candidate pools of hundreds of thousands of H1-B engineers and tens of millions of illegal immigrant warehouse workers, there still comes a point where such a big company firing so many people so quickly exhausts all their options.
It reminds me of the Robot Chicken Sketch where Imperial Officers aboard the Death Star all pretend to be force choked to death by Darth Vader so they can avoid getting killed by lightsaber, then come back in under different names in different jobs. It's worse though for Amazon: nobody wants to come back.
https://www.youtube.com/watch?v=fFihTRIxCkg
I can’t even exfiltrate my MacOS Notes on purpose. Maybe I’ll download it and give it a spin.
I remember when one of the "Core Goals" of Postman was "Complete control over your data - Keep simple JSON based data formats which can be exported and shared as per user needs".
https://web.archive.org/web/20140604204111/http://www.getpos...
> as ChatGPT confirmed when I asked it to analyze it
lol we are so cooked
I was recently at an events center, that has replaced all of their vending machines with machines that require me to install an app(!) to purchase a product. Literally, didn't take cash or credit - just via app.
Per the marketing on the side, this is meant to be for my benefit in order to earn "points" and get offered "deals." I don't think I have to tell you that I did NOT install the app, and just walked further to buy one from a vendor.
There is a massive arrogance problem within tech. Everyone thinks their product should be the center of everyone else's universe. The best products are invisible/get out of the way.
This is exactly why I made Yaak [1]. It's fully offline, no telemetry, open source, and can even sync with Git.
What a weird analysis.
A company that has revenues and is extremely well-capitalized gets debt finance. That is not news. That is totally commonplace. "Shouldn't all their capital come from investors?" No. Companies at all stages typically use a mixture of debt and equity finance.
His EV calculation is completely flawed also. Debt finance is typically senior to equity in recovery at bankruptcy, so when JPMC do this analysis (and believe me they did this analysis) they are not assuming 0% recovery. They are thinking it is most likely in a bankruptcy that they get some x>0% recovery.
Finally, banks don't think about their relationship with a multi-billion-dollar company in terms of the ROI on a single revolving credit. (even though this will in all likelihood be very profitable for JPMC). They think about how giving this revolving credit makes it more likely they get advisory on any future bond issuance and I-banking work when OpenAI want to do takeovers, and a foot in the door at IPO time etc.
This is having a direct impact on my wellbeing. I was at Whole Foods in Hudson Yards NYC and I couldn’t get the prime discount on my chocolate bar because the system isn’t working. Decided not to get the chocolate bar. Now my chocolate levels are way too low.
9s don’t have to drop if you increase the time period! “We still guarantee the same 9s just over 3450 years now”.
Seems like major issues are still ongoing. If anything it seems worse than it did ~4 hours ago. For reference I'm a data engineer and it's Redshift and Airflow (AWS managed) that is FUBAR for me.
Alibaba Cloud claims to reduce Nvidia GPU used for serving unpopular models by 82% (emphasis mine)
> 17.7 per cent of GPUs allocated to serve only 1.35 per cent of requests in Alibaba Cloud’s marketplace, the researchers found
Instead of 1192 GPUs they now use 213 for serving those requests.
Interesting day. I've been on an incident bridge since 3AM. Our systems have mostly recovered now with a few back office stragglers fighting for compute.
The biggest miss on our side is that, although we designed a multi-region capable application, we could not run the failover process because our security org migrated us to Identity Center and only put it in us-east-1, hard locking the entire company out of the AWS control plane. By the time we'd gotten the root credentials out of the vault, things were coming back up.
Good reminder that you are only as strong as your weakest link.
Very cool. One thing I wish was better shown: space is close, it's just hard to go up. Our liveable breathable atmosphere is razor thin compared to the size of earth.
In most cases, 100km is less than the distance between sizeable metropolitan areas. It's a day long bike ride. Air runs out less than a bus ride across town. A 15k jog/hike would put you in the stratosphere. Those jet aircraft that seem so high are closer than that. Closer than your friends house or the local stadium probably.
Look at a map or globe with that in mind and everything feels so thin!
US-East-1 is more than just a normal region. It also provides the backbone for other services, including those in other regions. Thus simply being in another region doesn’t protect you from the consistent us-east-1 shenanigans.
AWS doesn’t talk about that much publicly, but if you press them they will admit in private that there are some pretty nasty single points of failure in the design of AWS that can materialize if us-east-1 has an issue. Most people would say that means AWS isn’t truly multi-region in some areas.
Not entirely clear yet if those single points of failure were at play here, but risk mitigation isn’t as simple as just “don’t use us-east-1” or “deploy in multiple regions with load balancing failover.”
Text tokens are quantized and represent subword units, vision tokens only exist in the embedding space.
The way text tokenization works in LLMs is that you have a "lookup table" of (small) token ids to (large) vector embeddings. To pass text to the LLM, you split it at token boundaries, convert strings to token ids, and then construct the "context", a matrix where each row is a vector taken from that lookup table.
Transmitting text token sequences can be relatively efficient, you just transmit the token IDs themselves[1]. They're small integers (~100k possible token ids is typical for large models). Transmitting the actual embeddings matrix would be far less efficient, as embeddings often consist of thousands of floating point numbers.
Images are encoded differently. After some basic preprocessing, image data is passed straight to a neural- network-based image encoder. That encoder encodes the image into vectors, which are then appended to the context. There are no token ids, there's no lookup table, we go straight from image data to token embeddings.
This means transmitting image tokens cannot be done as efficiently, as you'd have to transmit the embeddings themselves. Even though an image is encoded in fewer tokens, the most efficient representation of those tokens takes more bytes.
You can think of a text token as an integer between 0 and n, which we know how to map to a vector. This means you have `n` possible choices of tokens. In contrast, an image token is an array of m floating point numbers (the vector itself), each of which can take on many possible values. This means the "token space" of vision tokens is actually much larger.
There's also the issue of patterns. Text tokens correspond directly to a contiguous span of UTF-8 bytes, and most tokenizers won't create tokens that span word boundaries. This means they can't encode global patterns efficiently. You can't have a "Hamlet's monologue" or "the text that follows is in Spanish" token.
Planning for an AWS outage is a complete waste of time and energy for most companies. Yes it does happen but very rarely to the tune of a few hours every 5-10 years. I can almost guarantee that whatever plans you have won’t get you fully operational faster than just waiting for AWS to fix it.
Have a meeting today with our AWS account team about how we’re no longer going to be “All in on AWS” as we diversify workloads away. Was mostly about the pace of innovation on core services slowing and AWS being too far behind on AI services so we’re buying those from elsewhere.
The AWS team keeps touting the rock solid reliability of AWS as a reason why we shouldn’t diversify our cloud. Should be a fun meeting!
Every week or so we interview a company and ask them if they have a fall-back plan in case AWS goes down or their cloud account disappears. They always have this deer-in-the-headlights look. 'That can't happen, right?'
Now imagine for a bit that it will never come back up. See where that leads you. The internet got its main strengths from the fact that it was completely decentralized. We've been systematically eroding that strength.
When AWS is down, everybody knows it. People don’t really question your hosting choice. It’s the IBM of cloud era.
“Based on our investigation, the issue appears to be related to DNS resolution of the DynamoDB API endpoint in US-EAST-1. We are working on multiple parallel paths to accelerate recovery.”
It’s always DNS.
Just a couple of days ago in this HN thread [0] there were quite some users claiming Hetzner is not an options as their uptime isn't as good as AWS, hence the higher AWS pricing is worth the investment. Oh, the irony.
[0]: https://news.ycombinator.com/item?id=45614922
Oh no... may be LaLiga found out pirates hosting on AWS?
Choosing us-east-1 as your primary region is good, because when you're down, everybody's down, too. You don't get this luxury with other US regions!
The paper is more interesting than just another VLM for OCR, they start talking about compression and stuff. E.g. there is this quote
>Our work represents an initial exploration into the boundaries of vision-text compression, investigating how many vision tokens are required to decode text tokens. The preliminary results are encouraging: DeepSeek-OCR achieves near-lossless OCR compression at approximately 10× ratios, while 20× compression still retains 60% accuracy.
(I guess you could say a picture token is worth 10 textual tokens...)
Could someone explain to a noob what the information-theoretic intuition is here? Why does this work, is it that text tokens are still too "granular"/repetitive and don't come close to the ideal entropy coding? Or is switching to vision tokens escaping the limitation of working "one word-ish at a time", allowing you to get closer to entropy (similar to the way that arithmetic encoding does compared to huffman codes)?
And then they start talking about handling long-context by literally(?) downscaling images, forming a correspondence between information loss in the textual domain and the image domain.
I miss when gaming in general was less mainstream and more weird like this. Now the silicon manufacturers hate that they even have to sell us their scraps, let alone spend time on making unique designs for their boxes.
I bought a small press book with a collection of this art and it was a fun little trip down memory lane, as I’ve owned some of the hardware (boxes) depicted in it.
For anyone else interested: https://lockbooks.net/pages/overclocked-launch
Go for a scroll up https://neal.fun/space-elevator/
Typically when people get fired for something like this they are just the scapegoat.
A failure like this isn't just one dude forgetting, its a system failure where policies and checks failed. If it is solely up to one person that is a failure in and of itself.
AIUI, because they let the patent expire, the drug was not subject to price regulation by the government. So they could charge whatever.
And during most of that time, they were still protected by 'data exclusivity' which means that any generic producer could not get approved without doing their own clinical trials, until 8 years had passed.
So they gave up some period of exclusivity in return for being able to charge a higher price when they still had a monopoly.
> Prof. Michael Hoffman from Toronto put me on to the Canadian Patent Database, where you can find that Novo did file a patent there for semaglutide. . .but the last time they paid the annual maintenance fee on it was 2018!
> You can even find a letter where their lawyers send a refund request for the 2017 maintenance fee ($250) because Novo apparently wanted some more time to see if they wanted to pay it.
> On the same date in 2019, the office sent a letter saying that “The fee payable to maintain the rights accorded by the above patent was not received by the prescribed due date. . .”
> By that time it was $450 with the late fee added, but that was apparently too much for Novo. They had a one year grace period to make it up, and apparently never did, so their patent lapsed in Canada. And as the Canadian authorities remind them, “Once a patent has lapsed it cannot be revived”.
Impressive failure for "the second-largest semaglutide market in the world."
I don't like "submarine" PR articles like this, because I feel like the author didn't ask any of the obvious questions around this zipper:
1. No closeup pics of how the zipper is actually sewed onto fabrics.
2. Is this design more likely to tear fabrics than a traditional zipper? A video another commenter linked made it look more fragile to me, but I don't know.
3. The biggest issue with any zipper is snags. This design looks like it would be a lot more likely to snag, but maybe not.
4. As other commenters mentioned, can it be repaired without special equipment?
I'm not saying this design is good or bad, just that this puff piece article didn't ask any of the immediate questions I had.
I have a tip for following lectures (or any technical talk, really) that I've been meaning to write about for a while.
As you follow along with the speaker, try to predict what they will say next. These can be either local or global predictions. Guess what they will write next, or what will be on the next slide. With some practice (and exposure to the subject area) you can usually get it right. Also try to keep track of how things fit into the big picture. For example in a math class, there may be a big theorem that they're working towards using lots of smaller lemmas. How will it all come together?
When you get it right, it will feel like you are figuring out the material on your own, rather than having it explained to you. This is the most important part.
If you can manage to stay one step ahead of the lecturer, it will keep you way more engaged than trying to write everything down. Writing puts you one step behind what the speaker is saying. Because of this, I usually don't take any notes at all. It obviously works better when lecture notes are made available, but you can always look at the textbook.
People often assume that I have read the material or otherwise prepared for lectures, seminars, etc., because of how closely I follow what the speaker is saying. But really most talks are quite logical, and if you stay engaged it's easy to follow along. The key is to not zone out or break your concentration, and I find this method helps me immensely.
It's actually an extremely good analogy (but in the opposite way of what you imply), as you don't own your job or your wife. Banning AI for job security is like banning dildos because they make men feel insecure.
> Comparing the power consumption of a [broken] 30 year old refrigerator to a brand new one
This is a bizarre essay by someone who understands neither functional programming nor the history of computers.
> To be kind, we’ve spent several decades twisting hardware to make the FP spherical cow work “faster”, at the expense of exponential growth in memory usage, and, some would argue, at the expense of increased fragility of software.
There is not one iota of support for functional programming in any modern CPU.
Equating “business” to “profound human intimacy” might be one of the most HackerNews comments of all time
Forgotten? No mention of why we should think they are forgotten outside the headline.
> Thanks everyone. We're beholden to our hosting environment for upgrades and it looks like there was a bit of a slip-up here. It's being worked on, but for now the Downloads page is disabled.
Calling this a "slip-up" is an outrageous downplay. If anything this makes me suspicious of the moderator who posted the comment too. One does not accidentally prepare a zip file with a malicious exe and xubuntu-specific language, upload it to a server, and point a torrent link at it.
Personal belief, but robots are coming to have sex with your wife is not a valid argument against robots. If robots can do your wife better and/or faster, they should be the ones doing the job. Specialization is how we get to the future.
So the problem isn't robots, it's the structure of how your wife relies on you for lovemaking. I don't feel like it's necessarily the AI company's problem to fix either.
This is what government is for, and not to stifle innovation by banning hot robot sex with your wife, but preparing your family for robot/wife lovemaking.
Personal belief, but robots coming for your jobs is not a valid argument against robots. If robots can do a job better and/or faster, they should be the ones doing the jobs. Specialization is how we got to the future.
So the problem isn't robots, it's the structure of how we humans rely on jobs for income. I don't necessarily feel like it's the AI company's problem to fix either.
This is what government is for, and not to stifle innovation by banning AI but by preparing society to move forward.
This is a brilliant piece of satire. "A Modest Proposal" for the AI age.
The leader bios are particularly priceless. "While working for 12 years as the Director of HR for a multinational, Faith realized that firing people gave her an almost-spiritual high. Out of the office, Faith coaches a little league softball team and looks after her sick mother - obligations she looks forward to being free of!"
that is the point of Luddism! the original Luddite movement was not ipso facto opposed to progress, but rather to the societal harm caused by society-scale economic obsolescence. the entire history of technology is also powerful business interests smearing this movement as being intrinsically anti-progress, rather than directly addressing these concerns…
I kind of get it, but at the same time...isn't "we made a machine to do something that people used to do" basically the entire history of of technology? It feels like somehow we should have figured out how to cope with the "but what about the old jobs" problem
“The GoFundMe CEO hopes younger donors, who are often more values-driven, digitally native, and community-oriented, will push giving higher and faster.” I can’t believe it. THIS is what he hopes for? He is not stating he hopes his country can get out of this mess? Or researching what his company can do? He’s just looking after his cut.
I've been pretty harsh on myself over the years.
I started carrying around a photo of myself as a kid. I'm sitting against a wall, by a pillar, at our state capital. My eyes are shut. I was kind of a shy kid.
When I start to get frustrated and talk to myself in that short, abrasive, condescending tone, I think of that photo and of myself, as still that kid.
It helps me to be more compassionate towards myself in those moments. I'm still that shy kid trying to make sense of the world.
I'm 47.
> No deep-sea shenanigans around the Titanic wreck were revealed. Manley explains in his Twitter thread that “the camera had been configured to dump data onto an external storage device, so nothing was found from the accident dive.” Nothing particularly pertinent to the tragic accident, that is.
This is about camera hardware and how it survived. It provides no information or footage about the incident (in case you were looking for it like I was).
It also speaks to an absolute failure of governance. If I missed an important email on a FreeBSD mailing list, you can bet that a dozen other people would see it and either poke me about it or just go ahead and act upon it themselves.
The fact that RMS missed an email and nobody else did anything about it either is a sign of an absolutely dysfunctional relationship between the project and its leadership.